home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir39 / aset13.zip / ASET.DOC next >
Text File  |  1994-03-21  |  2KB  |  84 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.                     Advanced Set v1.3 for DOS
  9.  
  10.  
  11.               By K.F.Soft, Denmark, (C) March 1994.
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. Usage of this program is free. The program may not be sold. It can be 
  20. distributed in the original ZIP-file at no charge.
  21. Advanced Set is distributed as is, without any express or implied warranty.
  22.  
  23. Comments, bugs and suggestions to kf@mmf.ruc.dk
  24.  
  25.  
  26.                               Purpose
  27.  
  28. Advanced Set enhances the capabilities of the dos SET command.
  29. With ASET it is possible to append to, delete from, rename etc. the strings 
  30. in the dos environment.
  31. Furthermore you can use ASET to create variables with lower case letters, 
  32. ie. variables unreachable by the set command.
  33. This is also useful in combination with Windows where the environment 
  34. variable "windir" determines the directory for the .ini-files. If you set
  35. windir BEFORE starting windows, it won't change it. That way you don't need
  36. to have win.com in each user's windir.
  37.  
  38.  
  39.                                Usage
  40.  
  41. ASET                       Show environment and status       
  42. ASET [/U] name             Show content of name              
  43. ASET [/U] name=            Delete name                       
  44. ASET [/U] name=xxxx        Set name to xxxx                  
  45. ASET [/U] /R name1 name2   Rename name1 to name2             
  46. ASET [/U] /C name1 name2   Copy name1 to name2               
  47. ASET [/U] /A name xxxx     Append xxxx to name                  
  48. ASET [/U] /P name xxxx     Prepend xxxx to name
  49. ASET [/U] /D name xxxx     Delete xxxx from name             
  50. ASET /S                    Show status                       
  51. ASET /E                    Show environment                  
  52. ASET /H or /?              Show this help screen             
  53.  
  54. ASET returns an errorlevel
  55. Errorlevel 0 = OK, 
  56. 1 = string name not found
  57. 2 = no room to insert string name
  58.  
  59.  
  60.                   Examples
  61.  
  62. ASET /c path oldpath    Copies PATH string to OLDPATH. 
  63.  
  64. ASET /d path ;NETWORK    Remove the string ';NETWORK' from PATH.
  65.  
  66. ASET /a temp \02    Appends the string '\02' to the TEMP string.
  67.  
  68.                             History
  69.  
  70. 1.0
  71. ?/91    First realization of the idea. Used at home.
  72.  
  73. 1.1
  74. 10/92   Internal release at Roskilde University, Denmark.
  75.     Problems :    MS-DOS 5 and 6.
  76.  
  77. 1.2
  78. 01/94    Public release.
  79.     Fixes :        Works with MS-DOS 5 and 6.
  80.  
  81. 1.3
  82. 03/94    Changes :     Added support for case sensitive naming.
  83.             Added /P to prepend a string to a variable
  84.